home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / lvswin.zip / WINSTATE.HPP < prev    next >
C/C++ Source or Header  |  1991-11-02  |  712b  |  28 lines

  1. /*
  2.  *            LVS Windows
  3.  *      The Window Class System
  4.  *
  5.  *        Copyright 1991 (c), Lake View Software
  6.  *                            4321 Harborough Rd.
  7.  *                            Columbus, OH 43220
  8.  *        All rights reserved.
  9.  */
  10.  
  11. #ifndef WINSTATE_HPP
  12. #define WINSTATE_HPP
  13.  
  14. class ScreenState {
  15.     private:
  16.         int restore;        // restore state on exit flag
  17.         int page;           // previous screen page
  18.         int *scr_buf;       // screen buffer
  19.         int y, x;           // cursor location
  20.         int rows, cols;     // row/col count
  21.         int mode;
  22.     public:
  23.         ScreenState ();
  24.         ~ScreenState ();
  25. };
  26.  
  27. #endif // #ifndef WINSTATE_HPP
  28.